home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / applications / wp / pmtex.lha / pmtex / src / smakefile < prev   
Encoding:
Makefile  |  1995-03-05  |  383 b   |  10 lines

  1. # Smakefile for compiling pmtexa.f and pmtexb.f with SAS/C 6.51
  2. # Did not include compiling of pmtexb.f because you have to make changes manually
  3. # You need the f77 frontend for f2c (and f2c of course) if you want to compile it.
  4. all: pmtexa pmtexb
  5.  
  6. pmtexa: pmtexa.f
  7.   f77 pmtexa.f
  8. pmtexb: pmtexb.c
  9.   sc link pmtexb.c lib:f2c.lib opt math=standard code=far data=far to=pmtexb ign=all
  10.